function changeLabel( labelId ) {
     var formTag = document.getElementById('votingForm');
     var inputsList = formTag.getElementsByTagName('input');
     for(var i = 0; i < inputsList.length; ++i) {
          if(inputsList[i].type != 'radio') return;
          if(inputsList[i].id == 'votingAns' + labelId){
               document.getElementById('labelvotingAns' + labelId).className = 'radioOn';
          }else{
               document.getElementById('label' + inputsList[i].id).className = 'radioOff';
          }
     }
}
