function reloadVoorWie() {
	VindPassendeZorgService.getDoelgroepPulldown(getZorgCategorieValue(), getPlaatsnaamValue(), getDoelgroepValue(), function(data) {
		document.getElementById('voor_wie_div').innerHTML = data;
	});
}

function reloadWelkeZorg() {
	VindPassendeZorgService.getZorgCategoriePulldown(getDoelgroepValue(), getPlaatsnaamValue(), getZorgCategorieValue(), function(data) {
		document.getElementById('welke_zorg_div').innerHTML = data;
	});
}

function reloadWaar() {
	VindPassendeZorgService.getPlaatsnaamPulldown(getDoelgroepValue(), getZorgCategorieValue(), getPlaatsnaamValue(), function(data) {
		document.getElementById('waar_div').innerHTML = data;
	});
}

function getDoelgroepValue() {
	var doelgroepPulldown = document.getElementById('voor_wie');
	return doelgroepPulldown.options[doelgroepPulldown.selectedIndex].value;
}

function getZorgCategorieValue() {
	var zorgCategoriePulldown = document.getElementById('welke_zorg');
	return zorgCategoriePulldown.options[zorgCategoriePulldown.selectedIndex].value;
}

function getPlaatsnaamValue() {
	var plaatsnaamPulldown = document.getElementById('waar');
	return plaatsnaamPulldown.options[plaatsnaamPulldown.selectedIndex].value;
}