function redirect(list) {
	var chosenIndex = list.selectedIndex;
	var redirectURL = list.options[chosenIndex].value;
	location.href = redirectURL;
	return true;
}
