jquery - pokaż pole tekstowe, gdy pole wyboru jest zaznaczone

Mam ten formularz

<form action="">
  <div id="opwp_woo_tickets">
    <input type="checkbox" class="maxtickets_enable_cb" name="opwp_wootickets[tickets][0][enable]">
    <div class="max_tickets">
        <input type="text" name="opwp_wootickets[tickets][0][maxtickets]">
    </div>

    <input type="checkbox" class="maxtickets_enable_cb" name="opwp_wootickets[tickets][1][enable]">
    <div class="max_tickets">
        <input type="text" name="opwp_wootickets[tickets][1][maxtickets]">
    </div>

    <input type="checkbox" class="maxtickets_enable_cb" name="opwp_wootickets[tickets][2][enable]">
    <div class="max_tickets">
        <input type="text" name="opwp_wootickets[tickets][2][maxtickets]">
    </div>
  </div>
</form>

Obecnie używam tego kodu jquery do wyświetlania pola tekstowego, gdy pole wyboru jest zaznaczone.

jQuery(document).ready(function($) {
   $('input.maxtickets_enable_cb').change(function(){
        if ($(this).is(':checked')) $('div.max_tickets').show();
        else $('div.max_tickets').hide();
    }).change();
});

Działa dobrze, ale po zaznaczeniu pokazuje wszystkie pola tekstowe.

Czy ktoś może mi pomóc to naprawić?

Oto demo mojego problemu.

http://codepen.io/mistergiri/pen/spBhD

questionAnswers(7)

yourAnswerToTheQuestion