Hello,

How can I know what was selected from my dropdown menu, WITHOUT having to POST the page using a submit button.

I have a dropdown menu called lstCountry on a page called COUNTRY.ASP. When a country is chosen from lstcountry and submit is clicked STATE.ASP is loaded and within STATE.ASP I say strCountry = request.form ("lstcountry") - this works fine, but I want to know what country was selected BEFORE(!!) I load STATE.ASP, because depending on what Country was selected I want to load the next page.

T