I have 2 condition to check true or false and take a certain action.Here is my code.\[code\]<xsl:variable name="hac" select="Hac1"/><xsl:choose> <xsl:when test="$hac= 'false'"> <p style="display:inline">Hac1: </p><input type="checkbox" disabled="disabled" ></xsl:when><xsltherwise> <p>HACCP: </p><input type="checkbox" disabled="disabled" checked="checked"></xsltherwise></xsl:choose><xsl:variable name="glo1" select="Gloves"/> <xsl:choose> <xsl:when test1="$glo1= 'false'"> <p style="display:inline">Gloves: </p><input type="checkbox" disabled="disabled" ></xsl:when><xsltherwise> <p>Gloves: </p><input type="checkbox" disabled="disabled" checked="checked"></xsltherwise></xsl:choose>\[/code\]This only displays my Hac1 and not my Gloves, and i don't know what seems to be the problem.