
function checkform ( form )
{

  // ** START **



 if (form.start.options[0].selected != ""){
    alert( "Please select a starting location." );
    form.start.focus();
    return false ;
  }



  // ** END **
  return true ;
}












