dojo.addOnLoad(function(){
	var findForm = dojo.byId('find_small');
	var breedSelect = dojo.byId('breed_small');
	var disciplineSelect = dojo.byId('discipline_small');
	
	if(findForm) {
		dojo.connect(findForm, 'onsubmit', function (e) {
			e.stopPropagation();
			e.preventDefault();
			dojo.stopEvent(e);

			if(breedSelect.options[breedSelect.selectedIndex].value != '') {
				tmpDiscipline = '';
				if(disciplineSelect.options[disciplineSelect.selectedIndex].value != '') {
					tmpDiscipline = '?discipline_small=' + (disciplineSelect.options[disciplineSelect.selectedIndex].value);
				}
				document.location.href = findForm.action + (breedSelect.options[breedSelect.selectedIndex].value) + '.html' + tmpDiscipline;
			}				

			return false;
		});
	}
});