/*******************************************************************
	Below here is the code for the "other" text boxes. 
********************************************************************/  
  	function isOther(selObj)
	 {
	
	 if(selObj.selectedIndex) 
	 	{ 
		 var selval = selObj[selObj.selectedIndex].value; 
		 var selName = selObj.name; 
		 if (selval.toLowerCase() == "other")
		 	showOther(selName); 
		 else 
		 	hideOther(selName); 
		}
	 }
	 
	 function showOther(selBox)
	 { 
	 	other = selBox + "_other"; 
	 	//document.forms[0][other].value = "Specify"; 	
		if (document.getElementById && !document.all)
		{ 
		  document.getElementById(other).style.visibility = "visible";  
		} 
		 else if (document.all) 
			document.all[other].style.visibility = "visible";
	 } 
	 
	function hideOther(selBox)
	  { 
		 other = selBox + "_other";  
		 //document.forms[0][other].value = ""; 
		 selBoxLength = document.forms[0][selBox].length;
		 document.forms[0][selBox][(selBoxLength - 1)].value = "other"; 
		 if (document.getElementById && !document.all)
			 document.getElementById(other).style.visibility = "hidden"; 
		 else if (document.all) 
		 	document.all[other].style.visibility = "hidden"; 	
	  } 
	  
    function updateSelect(selObj, val)
	  { 
	  	var selBoxLength = document.forms[0][selObj].length; 
	  	document.forms[0][selObj][(selBoxLength -1)].value = val; 
	  }
