function go(id) {
        	var dropdownIndex = document.getElementById(id).selectedIndex;
	        var dropdownValue = document.getElementById(id)[dropdownIndex].value;
            if(dropdownValue !=''){
			    window.open(dropdownValue, "_self");
			}

}

