You would have to have a separate select box and a text box. A user would type into the text box, and it would look through the values in the select box to see if it was there, and if so, make it the selected index.
If not, then you would have to maintain an array or collection of name/value pairs either in a database or in the session object. When they entered a value that wasn't in the select box, it would have to refresh the page and add the new value to the session object or database in ASP code at the top of the page. If you made it so that it pulled all values out of the database or session object to make the select box option tags, the new one would show up.
The problem with this is that using ASP you have to reload the page or submit to the same page in order to get the new value to show up in the select box. Harold Blackorby
hblackorby@scoreinteractive.com
St. Louis, MO