function check_option(opt)
{	
	if((opt == 'other') || (opt == 'Job Board'))
		document.getElementById('how_hear_other').style.display = "inline";
	else
		document.getElementById('how_hear_other').style.display = "none";
}

function change_location(str)
{
	if(str != '')
	{
		window.location.href= '/vacancies/'+str+'/'
	}
	else
	{
		window.location.href= '/vacancies/'
	}
	
}