function updatePlatnosci(status) {

	document.getElementById('platnosci').style.display=status;

}

function updateSms (status) {

   document.getElementById('sms').style.display=status;

}


function changeSubscribe(s) {
	
   switch(s) {
      
      case '1': // hide all
         updatePlatnosci('none');
         updateSms('none');
      break
      
      case '2': // show all
         updatePlatnosci('block');
         updateSms('block');
      break
      
      case '3': // show sms
         updatePlatnosci('none');
         updateSms('block');
      break
      
      case '4': // show platnosci
         updatePlatnosci('block');
         updateSms('none');
      break
      
   }
   
   //document.getElementById('addForm').reset();
   
}



