Do I need to post some code
function setLots(){
with(document.srchFrm){
Search.disabled = true;
document.all("123").innerText = 'Please Wait : Loading Lots ...';
var Current = Phase.selectedIndex;
Phase.options[Current].text = 'Please Wait : Loading Lots ...';
flag.value = 0;
submit();
}
}
<tr>
<td class="content">
<strong>Project:</strong></td>
<td class="content">
<select name="ProjID" style="width:475px;" onchange="setLots();">
<option value="-1"<cfif REQUEST.projID EQ -1> selected</cfif>>All Projects</option>
<option value=""><cfloop from="1" to="75" index="VARIABLES.index">-</cfloop></option>
<cfloop query="getProjects">
<option value="<cfoutput>#getProjects.ProjID#</cfoutput>"<cfif REQUEST.projID EQ getProjects.ProjID> selected</cfif>><cfoutput>#getProjects.Name2#</cfoutput></option>
</cfloop>
</select> </td>
</tr>
<cfquery name="getLots" datasource="MYDS">
SELECT ProjID, Phase
FROM lot_view
WHERE ProjID = '#REQUEST.projID#'
ORDER BY Phase
</cfquery>
<tr>
<td class="content">
<strong>Lot:</strong></td>
<td class="content">
<select name="Phase" style="width:275px;">
<cfif REQUEST.projID GT 0>
<option value="-1"<cfif getLots.phase EQ -1> SELECTED</cfif>>All Lots</option>
<cfloop query="getLots">
<option value="<cfoutput>#getLots.Phase#</cfoutput>"<cfif getLots.phase EQ REQUEST.phase> SELECTED</cfif>><cfoutput>#getLots.Phase#</cfoutput></option>
</cfloop>
<cfelse>
<option value="">None (Choose a Project Above)</option>
</cfif>
</select> </td>
</tr>
<tr>
<td class="content" nowrap>
<strong>Enter PO Number:</strong></td>
<td class="content" width="100%">
<input type="text" name="srch_RuleID" value="<cfoutput>#REQUEST.srch_RuleID#</cfoutput>" style="width:30px;"> <strong>–</strong> <input type="text" name="srch_PONo" value="<cfoutput>#REQUEST.srch_PONo#</cfoutput>" style="width:79px;"></td>
</tr>
<tr>
//document.all("123").innerText = 'Please Wait : Loading Lots ...';
document.getElementById('ProjID').textContent = 'Please Wait : Loading Lots ...';
<select name="ProjID" id="ProjID" style="width:475px;" onchange="setLots();">
If yes, is it using the document.all property which is only supported by IE, show you search code and let's see how things are going
The above may be one issue, i am just guessing as i have not sen any code so i cannot suggest, how it will work