Solo quiero que al volver a la página 1 con el botón "atras" del navegador se quede seleccionado en el combo el 1.
Pero en Firefox no funciona.
Código HTML:
<html>
<head>
<script type="text/javascript">
function formReset(){
document.getElementById("myForm").reset();
}
</script>
</head>
<body onLoad="formReset()">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><form action="" method="post" name="myForm" id="myForm">
<select name="select" onChange="window.open(this.value, '_parent')">
<option value="1.htm" selected>1</option>
<option value="2.htm">2</option>
</select>
</form>
</td>
</tr>
</table>
</body>
</html>