View Single Post
Old 08-26-2005, 06:02 PM   #2 (permalink)
smckittr
Scott
 
Join Date: Aug 2005
Posts: 29
smckittr is on a distinguished road
what kind of data are you trying to collect?
like is region an area in a country?
is the code you prvided part of a larger form?
How are you going to use the info?

If you are using it to send the user to a page depending what region they put in you could put:
Code:
<script language="JavaScript">
function gotoRegionPage()
{
window.location = document.formName.Region.value;
}
</script>
then add an onClick event to the submit button that calls gotoRegionPage()
Scott
smckittr is offline   Reply With Quote