<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:c="http://schemas.devleap.com/Customers">
<xsl:template match="customers">
<c:customers>
<xsl:for-each select="customer[@country = Italy]">
<c:customer>
<c:name><xsl:value-of select="@name"/></c:name>
<c:city><xsl:value-of select="@city"/></c:city>
</c:customer>
</xsl:for-each>
</c:customers>
</xsl:template>
</xsl:stylesheet>
