function othercheck(otherbox, selectid)
{
	if(document.quickapp[selectid].options[document.quickapp[selectid].selectedIndex].value == 'Other')
	{
		document.getElementById(otherbox).style.display = 'block';
	}
	else
	{
		document.getElementById(otherbox).style.display = 'none';
	}
}

function othercheckapp(otherbox, selectid)
{
	if(document.job_app_form[selectid].options[document.job_app_form[selectid].selectedIndex].value == 'Other')
	{
		document.getElementById(otherbox).style.display = 'block';
	}
	else
	{
		document.getElementById(otherbox).style.display = 'none';
	}
}