Bueno, no dupliques que no es la idea hay una normativa de el foro, podrías leerla.
prueba esto en una pagina en blanco
Código PHP:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>Untitled 1</title>
</head>
<body>
<%
if Session("MiVariable") = "" then
if request("MiVariable") = "" then
else
Session("MiVariable") = request("MiVariable")
end if
else
if Session("MiVariable") = request("MiVariable") then
Session("MiVariable") = Session("MiVariable")
else
Session("MiVariable") = request("MiVariable")
end if
end if
%>
<p>Mostrando: <%=Session("MiVariable")%></p>
<form name="CambiarPagina">
<select name="SaltaraEsta"
OnChange="location.href=CambiarPagina.SaltaraEsta.options[selectedIndex].value">
<option selected>Seleccione...
<option value="?MiVariable=10">10
<option value="?MiVariable=20">20
<option value="?MiVariable=30">30
</select>
</form>
</body>
</html>
suerte