I get these type of array in my javascript function as shown in image.Now i want selected all city in my dropdownlist which i get in my javascript array. I have tried it but i didn't get success.How to do it.
function searchitem(id,name)
{
 var ADDRESS = value.Address;
 console.log(ADDRESS);
 $("#Address option[value='" + vin + "']").prop("selected", true);
}
HTML Code
<select class="ct-js-select ct-select-lg" multiple="multiple" id="Address" name="Address[]" style="margin-left:14px;">
    <option value="any">Any</option>
    <optgroup label="City">
    <?php foreach($Locations_Response->city as $CITIES){ ?>
        <option value="<?php echo  $CITIES; ?>"><?php echo  $CITIES; ?></option>
    <?php } ?>
    </optgroup> 
</select>
