function showhide(box,id)  
{ 
 var elm = document.getElementById(id) 
 elm.style.display = box.checked? "":"none" 
}