module FFaker::AddressMX

def municipality(st_abbr = nil)

def municipality(st_abbr = nil)
  st_abbr ||= state_abbr
  MUNICIPALITY[st_abbr][rand(0...MUNICIPALITY[st_abbr].size)]
end

def postal_code

def postal_code
  FFaker.numerify('#####')
end

def state

def state
  fetch_sample(STATE)
end

def state_abbr(st_name = nil)

def state_abbr(st_name = nil)
  st_name ||= state
  STATE_ABBR[STATE.index(st_name)]
end

def zip_code

def zip_code
  FFaker.numerify('#####')
end