$(document).ready(function () 
{	
	$('select#siteDropDown').change(function()
	{
		if (this.value != '')
		{
			document.location.href = this.value
		}
	});

});