ciao a tutti ho un form con una select: ecco il cod:

Codice PHP:
head:

function 
vai(elem) {
var 
document.getElementById(elem).options.selectedIndex;
window.location document.getElementById(elem).options[i].value;

}

body:
<
form>
<
select method="post" name="select_tipo" style="width:148px" id="select" onchange="vai(this.id);">
<
option id="1"  value="prova.asp" onchange="vai(this.id);">prova</option>
<
option id="2"  value="prova.asp" onchange="vai(this.id);">prova2</option>
</
select>                          
</
form
il tutto funziona senza problemi .. però ora ho fatto caso ad una cosa nella pagina prova.asp ho messo Request("HTTP_REFERER") e praticamente tramite window.location non viene visto ... come potrei sostituire window.location in modo tale che mi venga visto http_referer ..