function rightSelectBox(form) {
// Default (form) value is 0
// Web/HTML page is set with OPTION SELECTED VALUE
var formindex=form.selectbox.selectedIndex;
parent.self.location=form.selectbox.options[formindex].value;
// parent.self refers to the current browser window
}