function hentpoststed(hvorfra, hvor) {
	postnr=document.getElementById(hvorfra).value;
	if((postnr.length)==4) {
		posturl="http://www.nextgentel.no/res/inc/postnr.php?postnr="+postnr;
		
		if (window.XMLHttpRequest) {
			xmlHttp = new XMLHttpRequest();
		} else if (window.ActiveXObject) {
			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
		
		if (xmlHttp) {
			xmlHttp.open("GET", posturl, false);
			xmlHttp.send(null);
			poststed = xmlHttp.responseText;
			document.getElementById(hvor).value=poststed;
			//document.getElementById("isted").value=poststed;
		}
	}
}