	
	function selectArtist(dropElement){
		
		var drop = document.getElementById(dropElement.id);
   		window.location = drop.options[drop.selectedIndex].value;
		
	}