Before analyzing any set of variables in a linear model, including ordinal regression, begin by check for multicollinearity by using linear regression to check the model Y= B0 + B1X1 + B2X2 + B3X + ... + e.
In SAS, this can be done with Proc Reg with the /VIF option on the model statement. Even if Y is binary, the linear regression procedure can be used to check for multicollinearity. Just use the linear regression procedure to screen for multicollinearity. Do your actual analysis with a logistic regression procedure.
The general guideline is that VIF values under 10 indicate that multicollinearity is not a problem. If you get high VIF values, then you will have to re-code your variables, do principle components analysis, or drop a variable.