function getIdentifiersFromState(theState, theBrand)
{
	var url = "../util/getIdentifiersByStateAndBrand.php"
	var parmStr = "state=" + theState + "&brand=" + theBrand;
	new Ajax.Request(url, {asynchronous:true, method:'post', postBody:parmStr, onSuccess:setIdentifiers});
}
