function goToPage(mySelect)

{

PageIndex2=mySelect.selectedIndex;

{

if 

(

mySelect.options[PageIndex2].value != "none"

)

{

//this is the key code in the JavaScript to open the new page in 
//the iframe:-
frames['regFrame'].location.href = mySelect.options[PageIndex2].value;
}

}

}


