$(document).ready(function(){
	$('#sermonLists').change(function() {
		if(this.selectedIndex == 1) window.location = '/mcms_page_sermonlist_sort.php?groupby=series';
		if(this.selectedIndex == 2) window.location = '/mcms_page_sermonlist_sort.php?groupby=category';
		if(this.selectedIndex == 3) window.location = '/mcms_page_sermonlist_sort.php?groupby=month';
		if(this.selectedIndex == 4) window.location = '/mcms_page_sermonlist_sort.php?groupby=preacher';
	});

});