function checkSystem(x)
{
	//alert(document.getElementById("brand").value);
	y = eval('document.' + x + '.model.value');
	//alert(x);
	if(y == "")
	{
		alert("Please select a Model before continuing!");
		return false;
	}
	else
	{
		//alert("ALL right");
		return true;
	}
}
