$(document).ready(function () {
$('#inscricaoPara').on('change',function(){
$("#Batismo").hide();
$("#Comunhao").hide();
$("#Crisma").hide();
$("#Noivo").hide();
if ($(this).val()==1)
$("#Batismo").show();
else if($(this).val()==2)
$("#Comunhao").show();
else if($(this).val()==3)
$("#Crisma").show();
else if($(this).val()==4)
$("#Noivo").show();
});
$('#casamentoIgreja').on('change',function(){
$("#DetalheCasamentoIgreja").hide();
if ($(this).val()=="SIM")
$("#DetalheCasamentoIgreja").show();
});
$('#separadoMatrimonio').on('change',function(){
$("#SeparadoNovoRelacionamento").hide();
if ($(this).val()=="NAO")
$("#SeparadoNovoRelacionamento").show();
});
$('#separadoRelacionamento').on('change',function(){
$("#SeparadoMatrimonioRealiza").hide();
if ($(this).val()=="SIM")
$("#SeparadoMatrimonioRealiza").show();