private void cmb_place_SelectedIndexChanged(object sender, EventArgs e)
 {
     id = G_maps.get_place_id_from_place_name(cmb_place.Text);
     string[] stats = G_maps.get_place_details_from_place_id(id);
     txt_name.Text     = stats[0].ToString();
     txt_address.Text  = stats[1].ToString();
     txt_phoneno1.Text = stats[2].ToString();
     //txt_phoneno2.Text = stats[3].ToString();
 }
 private void txt_venue_SelectedIndexChanged(object sender, EventArgs e)
 {
     string id = G_maps.get_place_id_from_place_name(txt_venue.Text);
     //txt_phoneno2.Text = stats[3].ToString();
 }