$(document).ready(function(){
	$(".chooseCommissary > select").change(function(){
		if( $(this).val() != "" ) {
			location.href = "/commissary/"+ $(this).val();
		}
		
	});
});
