function jumpToStep2()
{
  stateItem = document.getElementById('states');
  document.location = 'step2.asp?stateAbbr='+stateItem.options[stateItem.selectedIndex].value;
}

function jumpToCity()
{
  cityItem = document.getElementById('city');
  document.location = 'step2.aspx?city='+cityItem.options[cityItem.selectedIndex].value;
}

function NextField (field,next,limit)
{
   currElement = document.getElementById(field).value;
   nextElement = document.getElementById(next);
   if (currElement.length == limit)
     nextElement.focus();
}
