jQuery(function($) {
$(".jumpmenu").change(function() {
var val = $("select option:selected").val();
var val = $(this).selectedValues();
if (val != '') {
location.href=val;
}
});
});

