$(document).ready(function(){ $("input:checkbox[name='europa'] ").click(function(){ if ($(this).is(':checked')){ $.get( "/service/get_city/", {'id': $(this).val()}, function(j){ console.log(j); }); } else{ console.log('false'); } }) });