Got it!
I was already doing a Full Update on change, planning on changing it to a panel/partial update later.
I have not used the getComponent method before. I tried it in line one of the onchange of the comboBox like so:
var cat1 = getComponent("comboBox1").getValue()
if(cat1 == "Operations")
{
sessionScope.put("showSC", true);
}
else
{
sessionScope.put("showSC", false);
}
That fixed it.
Thanks Howard!