function dis_field()
{
	document.myform.other.disabled=true;
}

function disp_text()
	{
	var x = "Other";
	var w = document.myform.business_list.selectedIndex;
	//alert (w)
	if (w == 7)
	{
	document.myform.other.disabled=false;
	}	
	else;
	{
  }
	
	}
