function onStateClick(p_var){
		new Ajax.Updater('officeResults','offices.php',
			{
				asynchronous:true, evalScripts:true, method:'post',
				on404: function(t) { alert('Error 404: location "' + t.statusText + '" was not found.'); },
			    onFailure: function(t) { alert('Error ' + t.status + ' -- ' + t.statusText); },
				parameters:"stateCode="+p_var
			}
		);
}

function onLocationClick(p_locId, p_stateCode){
//alert('on location click ' + p_locId);
	jumpLink('location_'+p_locId);

}

