prova così:
codice:
function carica() {
if ((document.frm.offerta.options[document.frm.offerta.selectedIndex].value==2) && (document.frm.immobile.options[document.frm.immobile.selectedIndex].value=="appartamento") && (document.frm.locazione.options[document.frm.locazione.selectedIndex].value=="brusino") && (document.frm.m2.options[document.frm.m2.selectedIndex].value=="100"))
{
document.location.href='brusino.htm'
return false;
}
if ((document.frm.primoparametro.options[document.frm.primoparametro.selectedIndex].value==2) && (document.frm.secondoparametro.options[document.frm.secondoparametro.selectedIndex].value=="B"))
{
document.location.href='poppo.htm'
return false;
}
document.location.href='nessunrisultato.htm';
}
ciao