diff --git a/themes/default/js/tools/statesManagement.js b/themes/default/js/tools/statesManagement.js index 683893d64..57755602d 100644 --- a/themes/default/js/tools/statesManagement.js +++ b/themes/default/js/tools/statesManagement.js @@ -41,11 +41,10 @@ function updateState(suffix) $('select#id_state'+(suffix !== undefined ? '_'+suffix : '')).append(''); }); - $('p.id_state'+(suffix !== undefined ? '_'+suffix : '')+':hidden').slideDown('slow'); + $('p.id_state'+(suffix !== undefined ? '_'+suffix : '')+':hidden, div.id_state'+(suffix !== undefined ? '_'+suffix : '')).slideDown('slow'); } else - $('p.id_state'+(suffix !== undefined ? '_'+suffix : '')).hide(); - + $('p.id_state'+(suffix !== undefined ? '_'+suffix : '')+', div.id_state'+(suffix !== undefined ? '_'+suffix : '')).hide(); } function updateNeedIDNumber(suffix)