$(document).ready(function(){ setupFields(); $('.toggle').click(function() { setupFields(); }); $('#country').change(function() { countryChange(); }); }); function countryChange() { if ($('#country').val() == 'US' && $('input:radio[name=existing]:checked').val() == 0) { $('#province').hide(); $('#state').show(); } else if ($('#country').val() == 'CA' && $('input:radio[name=existing]:checked').val() == 0) { $('#province').show(); $('#state').hide(); } else { $('#province').hide(); $('#state').hide(); } } function setupFields() { if ($('input:radio[name=existing]:checked').val() == 1) { $('.new-account').hide(); $('.existing-account').show(); if ($('#loggedin').val() == 1) { } else { $('.cc-info').hide(); } } else { $('.existing-account').hide(); $('.new-account').show(); $('.cc-info').show(); } countryChange(); }