jQuery(document).ready(function($) {   
	$('select.remote').change(function(){
		var pattern = /PARAM/g;
		window.location = $(this).attr('data-chimera-remote').replace(pattern, $(this).val());
	});
});

