Hi,
It seems the structure is ID,Jan,Feb,Mar...
Use the UNION operator as shown below and you will get the result set as ID,Month,Value.
SELECT ID,Month,Value
FROM (
SELECT ID,Month='January',Value= Jan FROM table WHERE ID=selectedID
UNION
SELECT ID,Month='February',Value= Feb FROM table...