This function is not being called and is giving error. It does not say exactly the error, but it gives error soon to enter the form:
function ChangeSituacao(){
var vRads = document.getElementsByName('ind_situacao');
for(var i = 0; i < vRads.Length; i++){
alert(vRads[i].checked);
}
The idea goes through a collection of Radiobutton and pick up what is checked and then apply the rule of business. What is wrong with this function?