function showLocations(locale, zipCode) {
	var href =  '/' + locale + '/payment_locations/' + zipCode;
	//alert(href);
	window.location.href = href;
}
_$(document).ready(function() {
	_$('#paymentLocationFinder').click(function() {
	   showLocations(_$('#locale').val(),_$('#zipCode').val());
	});
 });