Try this in the onVisible Property of the field,
If(Dropdown.Selected = TheRecordYouWant,true,false)
or,
If(CheckBox.Value = true, true,false)
and if you want the field to show if the item is selected and checkbox is true then,
If(DropDown.Selected = DesiredItem AND Checkbox.Value = ture,true,false)
If this helped plz consider giving my answer a thumbs up and accept as a solution