onChange with dropdown list
This is a javascript version. For VB, replace the "this" with the dropdown list box name...
<select name="cboCust" size="1" ONCHANGE="this.form.hidCustName.value = this.options[this.selectedIndex].text" tabindex="1">
<%' Fill the combo box however you like %>
<OPTION value="whatever"> <font size="2">whatever</font> </OPTION>
<OPTION value="who"> <font size="2">who</font> </OPTION>
</select>
<%' this field should display selection from dropdown%>
<input type="text" name="hidCustName" value="">
Let me know if you run into problems.