I have a select to add days from an input on 'dd/mm/yy' format to show the result in another input, I tried to do this but this is not working.
<input type="text" id="startdate" value="15/11/17">
<select name="Select1" id="days">
<option value="1">1 day</option>
<option value="2">2 days</option>
<option value="3">3 days</option>
</select>
<input type="text" id="fdate" value="">
$( "#days" ).change(function() {
var sta = $('#startdate').val()
var sel = parseInt($(this).val())
$('#fdate').val(sta+sel )
});