If you are looking to hide any of the guest selection entries, you can easily do that, by inserting some CSS code.
Hide the children input:
.rz-guests .rz--dropdown table tr:nth-child(2) td {
    display: none!important;
}
Hide infants:
.rz-guests .rz--dropdown table tr:last-child td {
    display: none!important;
}
Hide the info text:
.rz-guests .rz--dropdown .rz--info {
    display: none!important
}