Hello,
My html/asp is a little bit rusted, but I think you just have to add the default choice at the beginning of your drop down, before getting db results :
Code:
'drop down code
<select name="cboproc" size=1" id="cboproc" onChange="PopulateTextbox()">
<option value="default" selected> - SELECT - </option>
<% do until rstproc.eof
lID = rstproc("pgprdc")%>
<option value="<%=lID%>"><%=rstproc("pgdesc")%> </option>
<%
rstproc.MoveNext
loop
%>
</select>
Also make this first option "selected", not the others, and make sure you don't populate your textbox when the user chooses this option.
Regards,
RBARAER