function jump(select, url) {
	url = new String(url);
	url = url.concat(select.name);
	url = url.concat('=');
	window.location.href=url.concat(select[select.selectedIndex].value);
}
