function check_multipleUnitsBox(dropdown_id, checkboxIn){      
      
			x = document.getElementById(dropdown_id);			
			
			if(checkboxIn == true){
      					x.value = 1
			}else{
						x.value = 0
			}
            
}