// JavaScript Documentfunction ShowTB(obj,id1){		 txt=obj.options[obj.selectedIndex].text;		 document.getElementById(id1).style.visibility='hidden';		 if (txt.match('Others')){		  document.getElementById(id1).style.visibility='visible';		 }		}
