
function $MP( id ){


	return document.getElementById( id );
}

function MPFormInputUpdater( id, newValue ){

	/**

		$('#selectId>option:selected').text();

	*/


	var jQueryID = '#'+id;
	$( jQueryID ).val( newValue );


}
