If, choose
<xsl:if test="expression"> ...some output if the expression is true... </xsl:if>
<xsl:choose> <xsl:when test="???"> 111 </xsl:when> <xsl:otherwise> 222 </xsl:otherwise> </xsl:choose>