function validaForm(){
	
if (document.getElementById('escola_origem').value==""){
alert("Voce deve preencher o campo: Escola de Origem");
document.getElementById('escola_origem').focus();
return false;
}

if (document.getElementById('nome_aluno').value==""){
alert("Voce deve preencher o campo: Nome do(a) Aluno(a)");
document.getElementById('nome_aluno').focus();
return false;
}

if (document.getElementById('data_nascimento').value==""){
alert("Voce deve preencher o campo: Data de Nascimento do Aluno");
document.getElementById('data_nascimento').focus();
return false;
}

if (document.getElementById('nome_pai').value==""){
alert("Voce deve preencher o campo: Nome do Pai");
document.getElementById('nome_pai').focus();
return false;
}
if (document.getElementById('email').value==""){
alert("Voce deve preencher o campo: E-mail");
document.getElementById('email').focus();
return false;
}


}