var toSend = [];
$(".option").each(function(index, value) {
var thisoption = "";
var thisvalue = "";
toSend.push({
option: $(this).find('.current').text(),
value: $(this).find('.value').text()
});
});
sendToHandle();
function sendToHandle() {
$.ajax({
type: "POST",
url: mailURL,
data: toSend
})
}