protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         WebDataAccess webDataAccess = new WebDataAccess();
         dlstType.DataSource = webDataAccess.GetDomesticTourType();
         dlstType.DataBind();
     }
 }