How do I get the label, 'kml1' off the point?
Example KML:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="
http://earth.google.com/kml/2.2">
<Document>
<name><![CDATA[KMLLabelEx]]></name>
<open>1</open>
<Snippet maxLines="2"></Snippet>
<description><![CDATA[Exported from KMLLabelEx on 10/22/2008]]></
description>
<Schema name="KMLLabelEx" id="KMLLabelEx_schema">
<SimpleField type="int" name="FID">
<displayName><![CDATA[FID]]></displayName>
</SimpleField>
<SimpleField type="int" name="Id">
<displayName><![CDATA[Id]]></displayName>
</SimpleField>
<SimpleField type="string" name="ExNUM">
<displayName><![CDATA[ExNUM]]></displayName>
</SimpleField>
</Schema>
<Style id="FEATURES">
<IconStyle>
<color>FF001694</color>
<scale>0.333333333333333</scale>
<Icon>
<href>root://icons/palette-4.png</href>
<x>32</x>
<y>128</y>
<w>32</w>
<h>32</h>
</Icon>
</IconStyle>
<LabelStyle>
<color>00FFFFFF</color>
</LabelStyle>
<BalloonStyle>
<text>
<![CDATA[FID = $[KMLLabelEx/FID]
Id = $[KMLLabelEx/Id]
ExNUM = $[KMLLabelEx/ExNUM]
]]>
</text>
</BalloonStyle>
</Style>
<Style id="FEATURES_LABELS">
<IconStyle>
<color>00000000</color>
<Icon>
<href>
http://maps.google.com/mapfiles/kml/shapes/
placemark_circle.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<color>FFFFFFFF</color>
</LabelStyle>
</Style>
<Folder>
<name>Features</name>
<open>0</open>
<Placemark>
<name><![CDATA[kml1]]></name>
<Snippet maxLines="2"></Snippet>
<styleUrl>#FEATURES</styleUrl>
<ExtendedData>
<SchemaData schemaUrl="#KMLLabelEx_schema">
<SimpleData name="FID">0</SimpleData>
<SimpleData name="Id">0</SimpleData>
<SimpleData name="ExNUM"><![CDATA[kml1]]></SimpleData>
</SchemaData>
</ExtendedData>
<Point>
<extrude>0</extrude>
<altitudeMode>clampedToGround</altitudeMode>
<coordinates>
-122.258819443589,38.0103668159179,0
</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Feature Labels (<![CDATA[ExNUM]]>)</name>
<open>0</open>
<Placemark>
<name><![CDATA[kml1]]></name>
<styleUrl>#FEATURES_LABELS</styleUrl>
<Point>
<extrude>0</extrude>
<altitudeMode>clampedToGround</altitudeMode>
<coordinates>
-122.258819443589,38.0103668159179,0
</coordinates>
</Point>
</Placemark>
</Folder>
</Document>
</kml>