function checkBrand()
{
	//alert(document.getElementById("brand").value);
	if(document.getElementById("brand").value == "")
	{
		alert("Please select a brand before continuing!");
		return false;
	}
	else
	{
		//alert("ALL right");
		return true;
	}
}
