function reloadPage() {
	var available = "A";
	var country = document.where_to_buy.country.options[document.where_to_buy.country.selectedIndex].value;
	if(document.where_to_buy.available)
		available = document.where_to_buy.available.options[document.where_to_buy.available.selectedIndex].value;
	location="where_to_buy.php?country=" + country+ "&available=" + available;
}
