function ajaxGet(ajaxurl,formid) {
	try {
    	xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
	} catch (e) {
	    // browser doesn't support ajax. handle however you want
	}
	xmlhttp.onreadystatechange = function() {
		if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
			document.getElementById(formid).style.display='block';
    		document.getElementById(formid).innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET",ajaxurl+'&random='+Math.random(),true);
	xmlhttp.send(null);
}