enter image description hereI want to change the below code to select options and execute those functions
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" id="button1">Date Range
<span class="caret" id="car"></span><i class="fa fa-calendar"></i> </select>
<ul class="dropdown-menu">
<li><input type="checkbox" class="chb" name="checkfield" id="checkboxes" onchange="today(this)">Today</li>
<li><input type="checkbox" class="chb" name="checkfield" id="checkboxes" onchange="lastweek(this)">Last 7 Days</li>
<li><input type="checkbox" class="chb" name="checkfield" id="checkboxes" onchange="last30days(this)">Last 30 Days</li>
<li><input type="checkbox" class="chb" name="checkfield" id="checkboxes" onchange="presentmonth(this)">This Month</li>
<li><input type="checkbox" class="chb" name="checkfield" id="checkboxes" onchange="lastmonth(this)">Last Month</li>
<li><input type="checkbox" class="chb" name="checkfield" id="checkboxes" onchange="yesterday(this)">Yesterday</li>
<li><input type="checkbox" class="chb" name="checkfield" id="checkboxes" onchange="today(this)">Custom Range</li>
</ul>
</div>
Change the second image to the first, the code is for the second image