function ToggleAltStart(form)
{
	var doHide = false
	
	if ((form.CompanyType.options[form.CompanyType.selectedIndex].value == 'top') || (form.CompanyType.options[form.CompanyType.selectedIndex].value == 'Equipment Rental') || (form.CompanyType.options[form.CompanyType.selectedIndex].value == 'Equipment Wholesaler') || (form.CompanyType.options[form.CompanyType.selectedIndex].value == 'Exporter') || (form.CompanyType.options[form.CompanyType.selectedIndex].value == 'OEM Dealer'))
	{
		doHide = true
	}

	document.getElementById("AltStart").style.display = doHide? "none" : "block"
}



