$('#lForm select').change(function(){
var $selects = $('#lForm select');
var idx = $selects.index(this);
// Use `val` function to clear the selected values or Use `remove` function to remove the element.
$selects.filter(':gt(' + idx +')').val('');
});