function ajax_get_contributie(lesuur_id, betaalwijze)
{
	var xmlHttp = getXmlHttp();
	xmlHttp.onreadystatechange=function()
	{
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
		{
			filterFinished(xmlHttp.responseText);
		}
	}
	loc = "ajax_get_contributie.php?lesuur_id="+lesuur_id+"&betaalwijze="+betaalwijze;
	xmlHttp.open("GET",loc,true);
	xmlHttp.send(null);
}

function filterFinished(xmlResponse)
{
	el = getElementById("contributie");
	el.innerHTML = xmlResponse;  // euro sign and amount
}
