function validarFormatCP(textBox){ if (textBox.value != "" && textBox.value.length != 5){ alert("El codi postal ha de ser de cinc dígits."); textBox.focus(); } }