Cita:
function validacion_tutorias(form) {
error = validarresidencia(form.residencia_estudias.value)
if (error == ""){
return true
} else {
alert(error);
return false
}
}
function validarresidencia(campo) {
if (campo == 0){
return "- No se ha seleccionado El lugar de residencia para estudiar.\n";
}else if(campo == "OTRAOPCION"){
document.getElementById('1').style.display = "block";
}else if(campo <> "OTRAOPCION"){
document.getElementById('1').style.display = "none";
}else{
return ""
}
}
error = validarresidencia(form.residencia_estudias.value)
if (error == ""){
return true
} else {
alert(error);
return false
}
}
function validarresidencia(campo) {
if (campo == 0){
return "- No se ha seleccionado El lugar de residencia para estudiar.\n";
}else if(campo == "OTRAOPCION"){
document.getElementById('1').style.display = "block";
}else if(campo <> "OTRAOPCION"){
document.getElementById('1').style.display = "none";
}else{
return ""
}
}