// Storelocator

function loadCity(country) {
	$('#city').load('./_public/storelocator_loadcity.php?country=' + country );
	$('#reseller').load('./_public/storelocator_leeg.php');
}

function loadReseller(city) {
	$('#reseller').load('./_public/storelocator_loadreseller.php?city=' + city );
}


function loadEshops() {
	$('#city').load('./_public/storelocator_leeg.php');
	$('#reseller').load('./_public/storelocator_loadeshops.php');
}