tengo este codigo que en Iexplorer funciona de maravilla, pero el firefox no funcioan el dice que el formulario no existe error en la linea 12
me pueden decir por k.
<!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>Documento sin título</title>
</head>
<script LANGUAGE="JavaScript">
function Mostrar(boton)
{
msg+="curriculum.php?aviso="+ formulario.edad.options[formulario.edad.selectedIndex].value+"\n";
alert(msg);
}
//-->
</script>
<body>
<form action="" name="formulario" id="formulario" method="GET">
Edad:<br>
<select name="edad" onchange="javascript:Mostrar()">
<option value="<18" SELECTED>Menor de 18 aos</option>
<option value=">18 y <60">Entre 18 y 60 años</option>
<option value=">60">Mayor de 60 años</option>
</select>
</form>
</body>
</html>