TEST115471.ASP:
<%@ Language=VBScript %>
<%
dim cFruit
cFruit = Request.Form("fFruit"
if cFruit <> "" then
Response.Write "Your choice was: " & cFruit & "<br>"
end if
%>
<form method=post action=test115471.asp>
<input type=hidden name=fSubmitted value=yes>
<select name=fFruit onChange="submit();">
<option value=apple
<% if cFruit = "apple" then response.write " selected" %>
>Apple<option value=banana
<% if cFruit = "banana" then response.write " selected" %>
>Banana<option value=orange
<% if cFruit = "orange" then response.write " selected" %>
>Orange<option value=peach
<% if cFruit = "peach" then response.write " selected" %>
>peach
</select>
</font>
Maybe you can retrieve your <OPTION>'s from a database, then you can write a small loop...
br
Gerard