function pickJourney() { 
	index = document.forms[1].manufacturerCode.selectedIndex;

	if(index==0) {
		document.forms[1].action="/cbg/ManufacturerAction.do";
		document.forms[1].SEARCH_CTGY.value="FIRST_SEARCH";
		document.forms[1].submit();
	}
	else {
		document.forms[1].SEARCH_CTGY.value="FIRST_SEARCH";
		document.forms[1].trade.value="false";
		document.forms[1].submit();
	}
}

function pickReview() { 
	index = document.forms[2].manufacturerCode.selectedIndex;

	if(index==0) {
		window.location = "http://www.theaa.com/allaboutcars/cartestreports/index.jsp";
	}
	else {
		var makeName=document.forms[2].manufacturerCode[index].text;
		var makeId=document.forms[2].manufacturerCode[index].value;
		var url = "http://www.theaa.com/allaboutcars/cartestreports/index.jsp?makeName="+makeName+"&makeId="+makeId;
		window.location = "http://www.theaa.com/allaboutcars/cartestreports/index.jsp?makeName="+makeName+"&makeId="+makeId;
	}
}

function pickJourneyForCarWorth() 
{ 
	index = document.forms[1].manufacturerCode.selectedIndex;

	if(index==0) {
		document.forms[1].action="/cbg/ManufacturerAction.do";
		document.forms[1].SEARCH_CTGY.value="FOURTH_SEARCH";
		document.forms[1].journey.value="fullValuation";
		document.forms[1].submit();
	}
	else {
		document.forms[1].SEARCH_CTGY.value="FOURTH_SEARCH";
		document.forms[1].journey.value="fullValuation";
		document.forms[1].trade.value="false";
		document.forms[1].submit();
	}
}
