getCity(){
let headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('Access-Control-Allow-Origin', '*');
headers.append('Access-Control-Allow-Methods', 'GET, POST, PUT');
return this.http.get(environment.apiUrl + 'Misc/'+'City', { headers: headers})
.pipe(map(data => data.json()),
catchError((error: any) => {
throw error;
}));
}