podes hacer mediante una redireccion al script correspondiente dependiendo del valor de la variable de los selects..
"SCRIPT PHP"
Código PHP:
$seleccion = $_POST[selects];
if($seleccion == "opcion1"){
header("Location: opcion1.php?dato1=$_POST[dato1]&dato2=$_POST[dato2]");
}
if($seleccion == "opcion2"){
header("Location: opcion2.php?dato1=$_POST[dato1]&dato2=$_POST[dato2]");
}
if($seleccion == "opcion3"){
header("Location: opcion3.php?dato1=$_POST[dato1]&dato2=$_POST[dato2]");
}
salu2