// Validar checkbox

    function HabiDsabi(){
 if(document.getElementById('cadastrar_participantes').Value == "Sim"){
	document.getElementById('button').disabled = ""
 }
 if(document.getElementById('cadastrar_participantes').Value == "Nao"){
     document.getElementById('button').disabled = "disabled"
 }
    }

