    $(function() {
        var opt = $('select[name=guest_num] option:selected').val();
        $('#room-'+opt).show();

        $("select[name=guest_num]").change(function () {
            var opt = $('select[name=guest_num] option:selected').val();

            $('.rooms').hide();
            $('#room-'+opt).show();
        });
    });