I have an XML document which looks something like this:
MENSWEAR
or you could use linq to XML and do it like this :
var match = XElement.Parse(xmlString);
var matches = from xml in xmlDocument.Elements()
where xml.Element("comp_div").Value == "MENSWEAR"
&& xml.Element("sty_ret_type").Value == "ACCESSORIES"
&& xml.Element("sty_pdt_type").Value == "BELTS"
&& xml.Element("pdt_category").Value == "AWESOME_BELTS"
select xml;