function ChangSite(changUrlSelect) {
	var url=changUrlSelect.options[changUrlSelect.selectedIndex].value;
	if(url!="") {
		window.open(url);
	}
}