Not intending to sound terse with this response but it sounds like this is the right time for you to start learning some javascript outside of a forum environment. Sometimes just having forum members throw you answers is not the best thing when you are unfamiliar with the basics. I'd suggest looking thru some
javascript tutorials to get started with these basics.
In short, I can provide these suggestions:
You need to handle the select element onchange event to capture when someone makes a choice.
<select onchange="doCountrySelection(this);">
Your javascript function needs to post the form back to the server. This will entail having the form "action" be set to the page it's on. To post the form with javascript
:
function doCountrySelection(objSelector){
objSelector.form.submit();
}
Then you can capture the selected value in asp: Request("country")
From there you can use that data to select the data for the next drop down. Keep in mind that now you'll need to "preselect" the country that the user chose. If you don't the country selector will default back to the top of the list.
Peter
------------------------------------------------------
Work smarter, not harder.