function enableOther()
{
	x=document.contactform
	if(x.regarding.value=='4')
	{
		x.other.disabled=false;
		x.other.focus();
	}
	else
	{
		x.other.disabled=true;
		x.other.value='';
	}
}