Same thing as Brenden had, but using the state class.
StateInfo si = StateInfoProvider.GetStateInfo(StateID);
if (si != null)
{
lbl.Text = si.StateDisplayName;
//You could use si.StateName too, but the display name will actually show up like "North Carolina" where the name would be NorthCarolina
}