Form - Select Fields - Other option

How do I create this? If the user selects Other, I want another form field to show.
Screenshot 2024-10-27 110314

Well, put that other with display none and create some css

.other_class {
display:none;
}

select[data-chosen=‘Other’] .other_class {
display:block;
}