function goThereDropDown(form, fieldname) {
	field = form[fieldname];
	if ( field == null ) { return false; }
	url = field.options[field.selectedIndex].value;
	if ( url.length > 0 ) {
		window.location.href = url;
		return true;
	}
	return false;
}
