$(document).ready(function(){
	$('#subContent form label').each(function() {
		text = $(this).text();
		$(this).siblings('input').defaultvalue(text);
		$(this).remove();
	});
});