hello friends following this excellent tutorial.
How-to-bind-data-to-a-DropDownList-which-is-inside-a-GridView-in-ASPNet.aspx
it is possible, use OnSelectedIndexChanged method of the dropdownlist and take the id value of the row where is the dropdownlist.
<asp:DropDownList ID="ddlCountries" runat="server" onselectedindexchanged="GetId_SelectedIndexChanged">
 c#
 protected void GetId_SelectedIndexChanged(object sender, EventArgs e)
        {
        }
need to have the id of the row where is the dropdownlist, to make a query after.
anyone has any idea how to start, 
Thanks for all your help.