(function($) {
	$.fn.submitSelectBox = function() {
		var form = $(this);
		var select = form.find('select');
		select.change(function() {
			form.submit();
		});
	};
})(jQuery);
