<!-- Begin
site = "http://www.";
function combineMenus(frm, menu1, menu2) {
with (frm) {
str = menu1.options[menu1.selectedIndex].value;
str += menu2.options[menu2.selectedIndex].value;
url = site + str + ".shtml";
window.location.href = url;
   }
}
//  End -->