<?xml version="1.0"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"> 
<xsl:template match="/">
<select> 
<xsl:for-each select="xml/rs:data/z:row"> 
       <option><xsl:value-of select="@city"/></option> 
</xsl:for-each> 
</select> 
</xsl:template>
</xsl:stylesheet>
