function fetchBrands() {
	ajax_initialize();
	ajaxRequest.open("GET", "fetchbrands.php?land=" + document.getElementById("land").value, true);
	ajaxRequest.onreadystatechange = function() {
		if(ajaxRequest.readyState===4)
			document.getElementById("merk_div").innerHTML = ajaxRequest.responseText;
		}
	ajaxRequest.send(null);

}

function loc() {  
  s="findcaps.php3?land="+document.forms["merken"].land.options[document.forms["merken"].land.selectedIndex].value;
  document.location = s;
}
