<!-- 
function letsgo() {
	var selection = document.yo.combo.selectedIndex;
	var newloc = null;
	if (selection == 0) newloc = null;
 else if (selection == 2) newloc = 'allait01.htm';
	else if (selection == 3) newloc = 'allait02.htm';
	else if (selection == 4) newloc = 'allait03.htm';
	else if (selection == 5) newloc = 'allait04.htm';
	else if (selection == 6) newloc = 'allait05.htm';
	if (newloc) setTimeout("parent.location = \'" + newloc + "\'", 0);
	}
// -->
