Hola
AngelofHope
Un ejemplo:
Código PHP:
<html>
<head>
<script type="text/javascript">
var cod = ['ES','CO','GU'];
var pa = ['España','Colombia','Guatemala'];
function validar(frm) {
c = frm.codigo.value;
p = frm.pais.value;
for (i=0; i<cod.length; i++) // averiguar indice de código
if (cod[i]==c) break
if (pa[i]!=p) {
alert('Error');
return false;
}
}
</script>
</head>
<body>
<form onsubmit = "return validar(this)">
<input type="text" name="codigo" />
<input type="text" name="pais" />
<input type="submit" />
</form>
</body>
</html>
Saludos,