jQuery(document).ready(function(){
	
	jQuery('#cems-quicklinks').change(function(){
		if (jQuery(this).val()) {
			window.location.href = jQuery(this).val();
		}
	});

});