I can't get this to work. It still only returns ["",""]
I also tried this unsuccessfully:
var newData = [];
Appery('Contact_Select').find(':selected').each( function(){
newData.push($(this).val());
});
newData = JSON.stringify(newData);
alert(newData);