// JavaScript Document
$(document).ready(function(){
	$("#chooseSite").change(function(){
		$("#goToSite").attr("href",$("select#selectSite").val());         
	 });
	$("#goToSite").click(function(){ 
		// the link is the value of the selected option
		var lnk = $("select#selectSite").val();
		// open link in new window
		window.open(lnk);
		// cancel any other behavior (href) and just run this function when the go button is clicked
		return false;
	});
});