function goSelect(select) {
    if (select.value != '') {
        goPath(select.value);
    }
}
function goPath(path) {
	location.href=location.protocol + '//' + location.host + path;
}