function validaPF(){  
  for(i=0; i < document.getElementById('formpessoafisica').length; i++){
    if(!(i >= 32 && i <= 49 && i == 52 && i == 53 && i == 56 && i == 57 && i >= 63)){
      if(document.getElementById('formpessoafisica').elements[i].value == ""){
        document.getElementById('formpessoafisica').elements[i].focus();
        alert ('Preencha o Campo Obrigatório!');
        return false;
      }
    }
  }
  return true;
}