You may want to try and create hidden inputs with the values of the first frame within the second frame so they get passed withe new data. ie
if the first frame had two values passed from it $date1 and $date2
In the second frame where you create the dropdown, in that same form make two hidden inputs something like
printf('<input type="hidden" name="date1" value="%s"', $date1);
and
printf('<input type="hidden" name="date2" value="%s"', $date2);
Now when yuou submit the form in the second frame these two variables will get passed as well.