If I understand you need something with this, it add a text from the scnd page to the first.
Because you use drop down box, you have to change it .
You need at scnd this at form.
Code:
<INPUT type="button" value="" onClick="postdata();self.close();"
Code:
<!--
function postdata() {
//
var oldval = top.opener.document.form.some.value;
top.opener.document.form.some.value= "";
top.opener.document.form.some.value =
oldval + document.form.some.value;
oldval = "";
}
// -->
</script>