$(document).ready (
	function(){
		$('#question-jumper').submit(function(e) {
			window.location = $('select#which-q option:selected').val();
			e.preventDefault();
		});
		/*
		$('select#which-q').change(function() {
			window.location = $("select option:selected").val();
		});
		*/
	});