function changeWebLink(thisSelect) {
	var url = thisSelect.options[thisSelect.selectedIndex].value;
	if (url.length > 0) {
		window.open(url);
	}	
}