<!-- ModifyForm
// Pas afstand aan
	function afstand_aanpassen()
	{
		methode = document.zoekcriteria.plaats.options[document.zoekcriteria.plaats.selectedIndex].value;
		if (methode=="route")
		{ afstand = 5; }
		else
		{ afstand = 10; }
		document.zoekcriteria.km.value = afstand;
	}
// Pas verbruik en tankinhoud aan
	function verbruik_tank()
	{
		brandstof = document.zoekcriteria.fuel.options[document.zoekcriteria.fuel.selectedIndex].value;
		if (brandstof=="euro95" || brandstof=="super" || brandstof=="superplus")
			{ tankinhoud = 40; literverbruik = 13; }
		else if (brandstof=="diesel")
			{ tankinhoud = 50; literverbruik = 15; }
		else if (brandstof=="rodediesel")
			{ tankinhoud = 75; literverbruik = 10; }
		else if (brandstof=="lpg")
			{ tankinhoud = 30; literverbruik = 10; }
		document.zoekcriteria.verbruik.value = literverbruik;
		document.zoekcriteria.tank.value = tankinhoud;
	}
// Pas afstand aan
	function display_plaats(plaatsnaam)
	{
		document.zoekcriteria.plaats.value = plaatsnaam;
	}
//-->