フレーム内の別ページを変更します。
■<head>〜</head>内に下記を貼り付けてください。
<script language="Javascript">
<!---
function clist(sample){
if(sample.gpg.selectedIndex==0){parent.fra2.location.href="sample_1.html"}
if(sample.gpg.selectedIndex==1){parent.fra2.location.href="sample_2.html"}
if(sample.gpg.selectedIndex==2){parent.fra2.location.href="sample_3.html"}
if(sample.gpg.selectedIndex==3){parent.fra2.location.href="sample_4.html"}
}
//--->
</script>
■<body>〜</body>内に下記を貼り付けてください。
<form>
<select name="gpg" onchange="clist(this.form)">
<option>sample_1</option>
<option>sample_2</option>
<option>sample_3</option>
<option>sample_4</option>
</select>
</form>