// select要素切り替えでページ移動
function LinkSelect(form, sel){
	adrs = sel.options[sel.selectedIndex].value;
	if (adrs != "-" ) location.href = adrs;
}

