dojo.addOnLoad(function(){
	var findForm = dojo.byId('find');
	var breedSelect = dojo.byId('breed');
	
	if(findForm) {
		dojo.connect(findForm, 'onsubmit', function (e) {
			dojo.stopEvent(e);
			
			if(breedSelect.options[breedSelect.selectedIndex].value != '')
			{			 
				if(dojo.isIE > 8) {
					findForm.action = findForm.action + (breedSelect.options[breedSelect.selectedIndex].value) + '.html';
				} else {
					document.location.href = findForm.action + (breedSelect.options[breedSelect.selectedIndex].value) + '.html';
				}
			}
			return false;
		});
	}
});
