I have some xml loaded in a NS manager.
I've gathered up a node list of all "<typeCharge>"nodes of which there are 7
I iterate through the nodes for the one named "FS" and find it.
I can't seem to figure out how to grab the "<charges>" node below it (charge is 45.67).
Any help would be appreciated.

Thanks

Code:
Dim charges As XmlNodeList = DirectCast(xmldoc.SelectNodes("df:root/df:details/df:typeCharge", mgr), XmlNodeList)


  For typchg As Int32 = 0 To charges.Count - 1
            If Trim(charges.Item(typchg).InnerText) = ("FS") Then

 *** how do I grab the charges node associated with this

            End If
        Next
- <details>
<typeCharge>P</typeCharge>
<description />
<weight>600</weight>
<class>60</class>
<rate>80.12</rate>
<charges>480.72</charges>
<typeCharge>P</typeCharge>
<description />
<weight>650</weight>
<class>60</class>
<rate>80.12</rate>
<charges>520.78</charges>
<typeCharge>GFC</typeCharge>
<description>GROSS FRT CHG</description>
<weight />
<class />
<rate />
<charges>1001.50</charges>
<typeCharge>D8400</typeCharge>
<description>84.00% DISCOUNT</description>
<weight />
<class />
<rate />
<charges>841.26</charges>
<typeCharge>NFC</typeCharge>
<description>NET FRT CHG</description>
<weight />
<class />
<rate />
<charges>160.24</charges>
<typeCharge>FS</typeCharge>
<description>LTL FUEL SURCHARGE OF 28.50%</description>
<weight />
<class />
<rate />
<charges>45.67</charges>
<typeCharge>TTL</typeCharge>
<description />
<weight>1250</weight>
<class />
<rate />
<charges>205.91</charges>
</details>