My change function allows users to switch from country to country and get different text and features. It works when changing country selections. But at initial page load, it do
Why not just trigger change after selecting the appropriate radio buttons?
change
$('input[name=country]').change();
This is equivalent to
$('input[name=country]').trigger('change');