jquery each select option selected code example
Example: each option select jquery
$("#id option").each(function()
{
// Add $(this).val() to your list
});
$("#id option").each(function()
{
// Add $(this).val() to your list
});