/* Author: 

*/

$(document).ready(function(){

			$(".msDropDown").msDropDown().data("dd");
			
			// get your select element and listen for a change event on it
			$('.msDropDown').change(function() {
			  // set the window's location property to the value of the option the user has selected
			  location.href = $(this).val();
			});


});

















