<!-- Jump menu -->

site = "http://www.mentholatum.ca/wheretobuyproducts"; // Do not include the final "/"
function combineMenus(frm, menu1, menu2) {
	with (frm) {
		str = menu1.options[menu1.selectedIndex].value;
		str2 = menu2.options[menu2.selectedIndex].value;
		url = site + "/" + str + "/" + str2 + "/" + str2 + ".html";
		window.location.href = url;
	}
}

