// Jump to url of selected retail centre

$(function() {
	
	$("#centre_selector").change( function() { 
		if(this.value != 0) {
			document.location = this.value;
		}
	});
	
});