dojo.addOnLoad(function(){
	var findForm = dojo.byId('find');
	var breedSelect = dojo.byId('breed');
	
	if(findForm) {
		dojo.connect(findForm, 'onsubmit', function (e) {
			e.stopPropagation();
			e.preventDefault();
			dojo.stopEvent(e);

			
			if(breedSelect.options[breedSelect.selectedIndex].value != '')
			{
				document.location.href = findForm.action + (breedSelect.options[breedSelect.selectedIndex].value) + '.html';
			}
			return false;
		});
	}
});