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