Código PHP:
  
<p align="center" class="style1">Seleccionar Tipo de Consulta</p>
<form id="form1" name="form1" method="post" action="">
  <div align="center"><span class="style1">
    <select name="tseleccion" id="tseleccion">
      <option value="Busqueda por Lugar">
        <? if ( $tseleccion==="Busqueda por Lugar" ) header("location: geoquerys.php");?>
        Busqueda por Lugar</option>
      <option value="Busqueda por Vehiculos">
        <? if ( $tseleccion==="Busqueda por Vehiculos" ) header("location: geoquerys2.php");?>
        Busqueda por Vehiculos</option>
    </select>
    </span>
    <input type="submit" name="button" id="button" value="Aceptar" />
  </div>
</form>    
 



