<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl=http://www.w3.org/1999/XSL/Transform
xmlns:fo="http://www.w3.org/1999/XSL/Fromat">

<xsl:output method="text"/>
<xsl:template match="/">
<xsl:apply-templates select="/Search/Property"/>
</xsl:template>
<xsl:template match="Property">
<xsl:value-of select="PropertyID"/>
<xsl:text disable-output-escaping="yes">, </xsl:text>
</xsl:template>
</xsl:stylesheet>
