I've tried these two expressions:
ValidationExpression="[^0-9]$"
ValidationExpression="^[^0-9]$"
But this is marking cities like Phoenix and Denver as having numbers in them. What is the correct expression to use here to only allow text that does not contain numbers?