jquery - muestra el cuadro de texto cuando la casilla está marcada

Tengo este formulario

<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>

A partir de ahora, estoy usando este código jquery para mostrar el cuadro de texto cuando la casilla de verificación está marcada.

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

Funciona bien, pero muestra todos los cuadros de texto cuando está marcado.

¿Puede alguien ayudarme a arreglarlo?

Aquí está la demo de mi problema.

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

Respuestas a la pregunta(7)

Su respuesta a la pregunta