function formResetFunc(id){
	$(id).reset();
	return false
}
function commJumpMenu(){
	var element = $('comSearchSel').value;
	location.href = element;
}
function commAnchorMenu(){
	var element = $('comCountySel').value;
	location.href = '#' + element;
}
function commCMSJumpMenu(){
	var element = $('communityCMSjumpMenu').value;
	location.href = element;
}
Event.observe(window, 'load', function(){
	if($('comSearchSel')){$('comSearchSel').observe('change', commJumpMenu.bindAsEventListener(this));}
	if($('comCountySel')){$('comCountySel').observe('change', commAnchorMenu.bindAsEventListener(this));}
	if($('communityCMSjumpMenu')){$('communityCMSjumpMenu').observe('change', commCMSJumpMenu.bindAsEventListener(this));}
	
	
});
