function ValidateLocation(F)
{
 if( F.location[F.location.selectedIndex].value == 'none' )
        {
        alert("Please select one of our office locations from the drop-down.");
        F.location.focus();
        }
	else 
    return( true );
    
  return( false );
}