Visible property on each datacard needs to be:
If(dropdown.selected.value = "Inspirational Individual" Or dropdown.selected.value = "HCA/Nurse of the Year" Or etc ... , true, false)
You could also use: If(Not(dropdown.selected.value = "Team/Ward of the Year"), true, false)
These should give the same results but the 2nd one is a little shorter. This is only usable b/c you have 6 options and you are allowing access to 5 of the options. If you add another one that doesn't get access such as "MVP of the Universe" then you would need to add it like: If(Not(dropdown.selected.value = "Team/Ward of the Year" Or dropdown.selected.value = "MVP of the Universe"), true, false)
Hope this helps! GL!