Your response appears to be ordinal, so you probably do not want to use LINK=GLOGIT which would treat its levels as nominal (unordered). It is best to never specify the response in the CLASS statement. Instead use the response options immediately after the response variable in the MODEL statement. Whenever you have an ordinal response and you want to model the probability of higher response values, specify the DESCENDING response option (for example MODEL HTN(DESCENDING)=SEDFIVE; ). If you want to model the probability of lower response values, no response option is needed. ALWAYS look at the Response Profile table to see that the ordering of the levels is as desired. In your case, I suspect the Response Profile table shows that you are modeling the probability of lower response values. So, the odds ratio estimate labeled "sedfive 4 vs 0" (for example) means that the odds of a lower response value in the sedfive=4 level are 1.506 times the odds of a lower response value in the sedfive=0 level.
... View more