There are several options (All of them requires some kind of code in C#):
1) Have the visibility of the second combobox binded to the SelectedItem of the first combobox and use a converted to convert the Yes No string to visibility
2) Have the combobox contain items from list (Binding to list) and the items will be enums. It is better practive to convert enums to visibility than convert string to visibility (since your program might sopport localization in the future and the text of Yes/No might be different (other language) while enum doesn't change.
3) have the combobox contain items from list (binding) and the items will be classes. The classes will contain a property of type Visibility and their ToString will return Yes or No