var list_target_id = 'pfregione'; //first select list ID var list_select_id = 'pfcountry'; //second select list ID var initial_target_html = ''; //Initial prompt for target select $('#'+list_target_id).html(initial_target_html); //Give the target select the prompt option baseUrlAutocomplete = "/autocomplete/"; // baseUrlAutocomplete = "/www.buscosocio.info/autocomplete/"; $(function() { if ($('#pfhidcountry').length) { if ($('#pfhidcountry').val() == '') { $('#pfhidcountry').val('ES'); } $.ajax({ url: baseUrlAutocomplete + "ac-regioni.php", data: { cc: 'ES' }, success: function(output) { //alert(output); $('#'+list_target_id).html(output); }, error: function (xhr, ajaxOptions, thrownError) { alert(xhr.status + " "+ thrownError); }}); } }); $('#cittaES').show();