Event.observe(window, 'load', function() {
	if ($$('#find_method').any()) {
		$('find_method_other_stuff').hide();
		new Form.Element.EventObserver('find_method', function() {
			if ($F('find_method') == 'other') {
				$('find_method_other_stuff').show();
			} else {
				$('find_method_other_stuff').hide();
				$('find_method_other').clear();
			}
		})
	}
})
