Sólo agregar que no es necesario enviar las variables por la url. La propiedad name de window te permite pasar variables a otras páginas sin las limitaciones de caracteres del método GET (podés pasar hasta 32 mb) y sin usar tampoco POST. Un ejemplo:
pág1:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>test</title>
<script>
function enviar(valor){
window.name=valor;
window.location='p2.php';
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<select name="select" onchange="enviar(this.value)">
<option>seleccionar</option>
<option value="aaa">aaa</option>
<option value="bbb">bbb</option>
<option value="ccc">ccc</option>
</select>
</form>
</body>
</html>
página2:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>test</title>
<script>
window.onload=function(){
document.getElementById('pp').appendChild(document.createTextNode(window.name));
}
</script>
</head>
<body>
<div id="pp"></div>
</body>
</html>