In the below code how to get the checkboxes that are selected only and remove it from the list using jquery and populate the removed html in the div
<div id="section_val">
<input type="checkbox" name="a_d" value="1">a_d</input>
<input type="checkbox" name="a_d" value="2">a_d1</input>
<input type="checkbox" name="a_d" value="3">a_d2</input>
<input type="checkbox" name="a_d" value="4">a_d3</input>
</div>
<div id="populate"></div>
<input type="button" value="Select" onclick="get_Selected();"/>
<input type="button" value="Retain" onclick="=retain;"/>
<script>
function get_Selected()
{
}
function retain()
{
}
</script>