<!--

function StateCheck()
{ 
 var	SelectedState  = document.forms[0].state.options[document.forms[0].state.selectedIndex].value;

location = "index.asp?state=" + SelectedState;
}

//---->

<!--

function validateform(theForm)
{
 if (theForm.state.value == "")
  {
    alert("Please select a state.");
    theForm.state.focus();
    return false;
  }
  if (theForm.County.value == "")
  {
    alert("Please select a magazine.");
    theForm.County.focus();
    return false;
  }
  return (true);
}
//-->
