function g(sel) {
	var theOpt = sel.options[sel.selectedIndex].value;
	if (theOpt == "") return false;
	else {
		var destination = "/mlb/draftday/search.jsp?sc=" + sel.name + "&sp=" + theOpt;
		document.location.href = destination;
	}
}

