I\'m trying to empty select options when:
id \"mClick\" is selected, id\'s \"sClick\", \"cClick\" and \"srClick\" will be emptied.
id \"sClick\" is selected,
You can use not(:first)
not(:first)
$('#lForm select[id!="makeClick"] select[id!="stateClick"] select[id!="cityClick"] option:not(:first)').remove().end();