<!--

function confirm_dropdown()
{

// Check to see if the dropdown value is is the first choice
if (mystateform.mystate.selectedIndex == 0)
{

// If the first choice is selected display an alert box
// stating the first choice is not a valid selection
alert("Please select your state.");

// Focus on the dropdown menu after OK is clicked from the alert box
mystateform.mystate.focus();
return (false);
}
// A choice other than the first was selected
// cotinue processing the form request
return (true);
}



-->