Use (assuming the initial context node is the parent of the div element):
div/ul/li/span[not(strike)]
This selects any span elements that doesn't have a strike child (and is a child of a li that is a child of a ul that is a child of a div that is a child of the initial context node)
And use:
div/ul/li/span[strike]
This selects any span elements that has a strike child (and is a child of a li that is a child of a ul that is a child of a div that is a child of the initial context node)
XSLT - based verification:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<xsl:copy-of select="div/ul/li/span[not(strike)]"/>
==============
<xsl:copy-of select="div/ul/li/span[strike]"/>
</xsl:template>
</xsl:stylesheet>
When this transformation is applied to the provided XML document:
<div class="availability">
Available:
<ul>
<li><span class="month available">March</span></li>
<li><span class="month unavailable"><strike>April</strike></span></li>
<li><span class="month unavailable"><strike>May</strike></span></li>
<li><span class="month unavailable"><strike>June</strike></span></li>
</ul>
</div>
the two XPath expressions are evaluated and the results (selected nodes) are copied to the output, delimited by a visually distinctive delimiter string:
<span class="month available">March</span>
==============
<span class="month unavailable">
<strike>April</strike>
</span>
<span class="month unavailable">
<strike>May</strike>
</span>
<span class="month unavailable">
<strike>June</strike>
</span>