<script language="JavaScript">
<!--
function jumpURL(target){
if(target != ""){
location.href = target
}
}
document.write('<FORM>')
document.write('<SELECT NAME="select" onChange="jumpURL(this.options[this.selectedIndex].value)">')
document.write('<OPTION VALUE="">SELECT');
document.write('<OPTION VALUE="https://www.google.com/">Google');
document.write('<OPTION VALUE="https://www.yahoo.co.jp/">Yahoo! JAPAN');
document.write('<OPTION VALUE="https://www.rakuten.co.jp/">楽天市場');
document.write('</SELECT></FORM>')
//-->
</script>