private void CargarPromotores()
        {
            objPlanificacion = new PlanificacionWCFClient();
            string id_vendedor = Request.QueryString["Id_Vendedor"];
            List <USP_Sel_PromotoresxVendedorResult> lst = new List <USP_Sel_PromotoresxVendedorResult>();

            lst = objPlanificacion.Obtener_PromotoresxVendedor(
                ((Usuario_LoginResult)HttpContext.Current.Session["Usuario"]).idEmpresa,
                ((Usuario_LoginResult)HttpContext.Current.Session["Usuario"]).codigoUsuario,
                id_vendedor
                ).ToList();

            cbpromotor.DataSource     = lst;
            cbpromotor.DataTextField  = "NombrePromotor";
            cbpromotor.DataValueField = "Id_Promotor";
            cbpromotor.DataBind();
        }