// JavaScript Document
$(document).ready( function(){
	$("select[name='age']").change(function () {
		if ($(this).children().eq(0).val() == "Years") {
			$(this).children().eq(0).remove();
		}
	});
});
