protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
        {
            //bind distinct destination to drop down destination for which flight originate from selected source
            string           source           = listSource.Text;
            GetFlightDetails getFlightDetails = new GetFlightDetails();

            listDestination.DataSource = getFlightDetails.GetDestination(source);
            listDestination.DataBind();
        }