Changing select drop down from 2nd page
I am trying to add a search button next to a select drop down with a HUGE amount of data. The search button opens a popup window that allows you to narrow down choices and select one that is in the drop down(that part works). However I can't seem to pass the parameter selected back to the drop down on the first page to have it as the selected item.
I am working with the scripts in the popup window, and I am trying:
window.opener.document.forms(0).Product(lngBoxNumber).value = x
forms(0) :confused: I think that is the first window.
Product(1) is the name of the drop down.
x is the value I am trying to assign.
Please Help! Thanks.