override fun onAttach(context: Context) {
super.onAttach(context)
if(context is OnCityChangeListener) {
listener = context
}
}
override fun onDetach() {
super.onDetach()
listener = null
}