// JavaScript Document
$(function(){
		   $('#dropDown select').change(function(){
			var goToURL = 	$('#dropDown option:selected').attr('value');
			window.location.replace( goToURL );								
												});
		   
		   
		   }); 


