// JavaScript Document
//this function is specail for disabling the destination dropdown
//if search Career is ESL/Degree Preparation, destination is set to Show All
function disableDropDown()
{
	if( document.getElementById('programcategory_main').value == 600 )
	{
		document.getElementById('destination').selectedIndex = 0;
		document.getElementById('destination').disabled = true;
	}
	else
	{
		document.getElementById('destination').disabled = false;
	}
}