function chncurr(curr){
	document.currency.cp.value = curr;
	// bike start
	make = document.form1.make.value;
	// bike end
	model = document.form1.model.value;
	country = document.form1.country.value;
	maxprice = document.form1.maxprice.value;
	minprice = document.form1.minprice.value;
	// bike start
	document.currency.locat.value = "index.php?make=" + make + "&model=" + model + "&country=" + country + "&minprice=" + minprice + "&maxprice=" + maxprice;
	// bike end
	alert("This page will now reload to change and save your currency settings");
	document.currency.submit();
}