function doFastFind(dropdown) {
	//alert("hello");
	if (dropdown.options[dropdown.selectedIndex].value != "") {
		location.href = dropdown.options[dropdown.selectedIndex].value;
	}
}