$(document).ready(function(){ $('.toggle').click(function(){ $(this).parent().next().toggle(); return false; }); $('.check').click(function(){ var $input = $(this).prev(); if ($input.is(':checked')){ $input.prop('checked', false); $input.parent().next().find('input').prop('checked', false); } else{ $input.prop('checked', true); $input.parent().next().find('input').prop('checked', true); } return false; }); $("input:checkbox[name='europa'] ").change(function(){ var $this = $(this); if ($this.is(':checked')){ $.get( "/admin/service/get_city/", {'id': $(this).val()}, function(j){ $this.parent().after(j); console.log($this); }); } else{ $this.parent().next().remove(); } }) });