// http://www.webinception.com/articles/view/creating_a_jumpmenu_in_jquery/ - Include jquery-selectboxes.js

$(document).ready(function() {
    $("#jumpmenu").change(function() {
        var val = $(this).selectedValues();
        if (val != '') {
            location.href=val;
        }
    });
});


// http://www.sitepoint.com/forums//showthread.php?t=620429
$(document).ready(function() {
	$('#submit-value').change(function(){
    	$('#jump-option').submit();
	});
});