top.processForm=function(theForm){ 
	var theDir = theForm.elements[0].options[theForm.elements[0].selectedIndex].value;
	var action="";
	if (theDir > 45 && theDir < 56){ //region or boolean
		if (theDir >51){//region
			action="car_submit_" + top.lang + ".asp?l=" + lang + "&a=r&id=" + theDir;
		}else{
			action="car_submit_" + top.lang + ".asp?l=" + lang + "&a=b&id=" + theDir;
		}
	}else{
	        action="car_submit_" + top.lang + ".asp?l=" + lang + "&a=d&id=" + theDir;
	}
	document.location.href=action;
}
