In XSLT 2.0:
<xsl:template match="boulevard">
<xsl:value-of select="string-join(block, ', ')"/>
</xsl:template>
In 1.0:
<xsl:template match="boulevard">
<xsl:for-each select="block"/>
<xsl:value-of select="."/>
<xsl:if test="position() != last()">
<xsl:text>, </xsl:text>
</xsl:if>
</xsl:for-each>
</xsl:template>
Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference