Help with compare values statement

Help with compare values statement

Is there a better way I can write this statement? I want to check if the ID is any of these.

  1. var cat = $("select#category").val();
    if (cat == 23 || cat == 24 || cat == 25 || cat == 41  )
  2.       {$("select#lamp").html("<option>Some Category</option>");}
  3.             else {
                       $("select#lamp").html(data);}