[SalesForce] Assign selected picklist value as a default value to the Text field

I want to assign selected picklist value as a default value to my Text field.
I am having a Select_Option__c field on Lead and a Enter Detail text field. I also want to add the selected value of picklist to the Text field.
I am using Case function for this purpose ,but it is showing error as :

":Field Select_Option__c may not be used in this type of formula"

My formula is as follows :

CASE({!Select_Option__c}, 
"Before 1st September 1939", "Before 1st September 1939",
"Gulag", "Gulag",
"Military Service in Allied Armies", "Military Service in Allied Armies",
"Other Incarceration", "Other Incarceration",
"Other Incarceration Under 14", "Other Incarceration Under 14",
"Partisan", "Partisan",
"Polish Army","Polish Army",
"Polish Incarceration 44-56","Polish Incarceration 44-56",
"Taken From Parent","Taken From Parent",
"Ukrainian Insurgent Army","Ukrainian Insurgent Army",
"")

Can anyone Help ?

Best Answer

Just use a wfr that when the field is blank field = pick list field.

If you use a formula field for the text field you will not be able to edit the field. At that point the field is useless as it would be an exact duplicate of the pick list field

To directly answer your question you would need

TEXT() around your pick list merge