function destroy()
 {
     $id = Input::get('CITY_ID');
     $city = City::findCity($id);
     $city->delete();
     return back();
 }